home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / NeXT-Icons / next-icon@gun.com / Apps / ImagePortfolio / apputils.subproj / fileUtils.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-03  |  558 b   |  20 lines

  1.  
  2. /* fileUtils.m */
  3.  
  4. const char *XFileExtension(const char *fileName);
  5. const char *XFileNameExtension(const char *fileName);
  6.  
  7. int XFileExists(const char *fileName);
  8. int XFileIsDirectory(const char *fileName);
  9. int XFileIsLink(const char *fileName);
  10. char *XFileGetLink(const char *file, char *link);
  11. long XFileSize(const char *fileName);
  12.  
  13. char *XCurrentDir(char *dir);
  14. int XChangeDir(char *path);
  15.  
  16. int XCopyFile(const char *fromName, const char *toName, int backup);
  17.  
  18. char *XMountPath(char *path, char *mountPath);
  19. char *XResolveLinks(char *path, char *nPath);
  20.